home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / GRAPHICS / MATRIX.ZIP / SOURCE.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1994-08-21  |  586 b   |  30 lines

  1.  
  2. # Makefile for Matrix demo
  3. # (Simon Hern, 1994)
  4.  
  5.  
  6. M=s             # Model
  7. CPL=tcc         # Compiler
  8. LNK=tlink       # Linker
  9. ASM=a86         # Assembler
  10.  
  11.  
  12. matrix.exe : matrix.obj mtxcode.obj angsines.obj
  13.     $(LNK) c0$(M) matrix mtxcode angsines, matrix, matrix, emu math$(M) c$(M)
  14.  
  15. matrix.obj : matrix.c
  16.     $(CPL) -m$(M) -c matrix.c
  17.  
  18. mtxcode.obj : mtxcode.asm
  19.     $(ASM) mtxcode.asm mtxcode.obj
  20.  
  21. angsines.obj : angsines.asm
  22.     $(ASM) angsines.asm angsines.obj
  23.  
  24. angsines.asm : creatang.exe
  25.     creatang
  26.  
  27. creatang.exe : creatang.c
  28.     $(CPL) creatang.c
  29.  
  30.